home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 September / PCWorld_2007-09_cd.bin / v cisle / wireshark / wireshark-setup-0.99.6a.exe / snmp / mibs / DISMAN-PING-MIB.txt < prev    next >
Text File  |  2006-07-05  |  57KB  |  1,562 lines

  1. DISMAN-PING-MIB DEFINITIONS ::= BEGIN
  2.  
  3. IMPORTS
  4.     MODULE-IDENTITY, OBJECT-TYPE, Integer32,
  5.     Unsigned32, Gauge32, mib-2,
  6.     NOTIFICATION-TYPE, OBJECT-IDENTITY
  7.         FROM SNMPv2-SMI                  -- RFC2578
  8.     TEXTUAL-CONVENTION, RowStatus,
  9.     StorageType, DateAndTime, TruthValue
  10.         FROM SNMPv2-TC                   -- RFC2579
  11.     MODULE-COMPLIANCE, OBJECT-GROUP,
  12.     NOTIFICATION-GROUP
  13.         FROM SNMPv2-CONF                 -- RFC2580
  14.     InterfaceIndexOrZero                 -- RFC2863
  15.         FROM IF-MIB
  16.     SnmpAdminString
  17.         FROM SNMP-FRAMEWORK-MIB          -- RFC3411
  18.     InetAddressType, InetAddress
  19.         FROM INET-ADDRESS-MIB;           -- RFC4001
  20.  
  21.  pingMIB MODULE-IDENTITY
  22.     LAST-UPDATED "200606130000Z"         -- 13 June 2006
  23.     ORGANIZATION "IETF Distributed Management Working Group"
  24.     CONTACT-INFO
  25.         "Juergen Quittek
  26.  
  27.         NEC Europe Ltd.
  28.         Network Laboratories
  29.         Kurfuersten-Anlage 36
  30.         69115 Heidelberg
  31.         Germany
  32.  
  33.         Phone: +49 6221 4342-115
  34.  
  35.         Email: quittek@netlab.nec.de"
  36.     DESCRIPTION
  37.         "The Ping MIB (DISMAN-PING-MIB) provides the capability of
  38.         controlling the use of the ping function at a remote
  39.         host.
  40.  
  41.         Copyright (C) The Internet Society (2006).  This version of
  42.         this MIB module is part of RFC 4560; see the RFC itself for
  43.         full legal notices."
  44.  
  45.      --  Revision history
  46.  
  47.      REVISION     "200606130000Z"         -- 13 June 2006
  48.      DESCRIPTION
  49.          "Updated version, published as RFC 4560.
  50.              - Correctly considered IPv6 in DESCRIPTION
  51.                clause of pingCtlDataSize
  52.              - Replaced references to RFC 2575 by RFC 3415
  53.              - Replaced references to RFC 2571 by RFC 3411
  54.              - Replaced references to RFC 2851 by RFC 4001
  55.              - Added DEFVAL { {} } to definition of
  56.                pingCtlTrapGeneration
  57.              - Changed DEFVAL of object pingCtlDescr from
  58.                DEFVAL { '00'H } to DEFVAL { ''H }
  59.              - Changed DEFVAL of object pingCtlSourceAddressType
  60.                from DEFVAL { ipv4 } to DEFVAL { unknown }
  61.              - Extended DESCRIPTION clause of pingResultsTable
  62.                describing re-initialization of entries
  63.              - Changed SYNTAX of pingResultsProbeResponses and
  64.                pingResultsSentProbes from Unsigned32 to Gauge32
  65.              - Changed status of pingCompliance to deprecated
  66.              - Added pingFullCompliance and pingMinimumCompliance
  67.              - Changed status of pingGroup and pingTimeStampGroup
  68.                to deprecated
  69.              - Added pingMinimumGroup, pingCtlRowStatusGroup,
  70.                and pingHistoryGroup"
  71.  
  72.      REVISION     "200009210000Z"         -- 21 September 2000
  73.      DESCRIPTION
  74.          "Initial version, published as RFC 2925."
  75.     ::= { mib-2 80 }
  76.  
  77.  -- Textual Conventions
  78.  
  79.   OperationResponseStatus ::= TEXTUAL-CONVENTION
  80.     STATUS  current
  81.     DESCRIPTION
  82.         "Used to report the result of an operation:
  83.  
  84.          responseReceived(1) - Operation is completed successfully.
  85.          unknown(2) - Operation failed due to unknown error.
  86.          internalError(3) - An implementation detected an error
  87.               in its own processing that caused an operation
  88.               to fail.
  89.          requestTimedOut(4) - Operation failed to receive a
  90.               valid reply within the time limit imposed on it.
  91.          unknownDestinationAddress(5) - Invalid destination
  92.               address.
  93.          noRouteToTarget(6) - Could not find a route to target.
  94.          interfaceInactiveToTarget(7) - The interface to be
  95.               used in sending a probe is inactive, and an
  96.               alternate route does not exist.
  97.          arpFailure(8) - Unable to resolve a target address to a
  98.               media-specific address.
  99.          maxConcurrentLimitReached(9) - The maximum number of
  100.               concurrent active operations would have been exceeded
  101.               if the corresponding operation was allowed.
  102.          unableToResolveDnsName(10) - The DNS name specified was
  103.               unable to be mapped to an IP address.
  104.          invalidHostAddress(11) - The IP address for a host
  105.               has been determined to be invalid.  Examples of this
  106.               are broadcast or multicast addresses."
  107.     SYNTAX INTEGER {
  108.                  responseReceived(1),
  109.                  unknown(2),
  110.                  internalError(3),
  111.                  requestTimedOut(4),
  112.                  unknownDestinationAddress(5),
  113.                  noRouteToTarget(6),
  114.                  interfaceInactiveToTarget(7),
  115.                  arpFailure(8),
  116.                  maxConcurrentLimitReached(9),
  117.                  unableToResolveDnsName(10),
  118.                  invalidHostAddress(11)
  119.               }
  120.  
  121.  -- Top level structure of the MIB
  122.  
  123.  pingNotifications              OBJECT IDENTIFIER ::= { pingMIB 0 }
  124.  pingObjects                    OBJECT IDENTIFIER ::= { pingMIB 1 }
  125.  pingConformance                OBJECT IDENTIFIER ::= { pingMIB 2 }
  126.  
  127.  -- The registration node (point) for ping implementation types
  128.  
  129.  pingImplementationTypeDomains  OBJECT IDENTIFIER ::= { pingMIB 3 }
  130.  
  131.  pingIcmpEcho OBJECT-IDENTITY
  132.     STATUS      current
  133.     DESCRIPTION
  134.         "Indicates that an implementation is using the Internet
  135.         Control Message Protocol (ICMP) 'ECHO' facility."
  136.     ::= { pingImplementationTypeDomains 1 }
  137.  
  138.  pingUdpEcho OBJECT-IDENTITY
  139.     STATUS      current
  140.     DESCRIPTION
  141.         "Indicates that an implementation is using the UDP echo
  142.         port (7)."
  143.     REFERENCE
  144.         "RFC 862, 'Echo Protocol'."
  145.     ::= { pingImplementationTypeDomains 2 }
  146.  
  147.  pingSnmpQuery OBJECT-IDENTITY
  148.     STATUS      current
  149.     DESCRIPTION
  150.         "Indicates that an implementation is using an SNMP query
  151.          to calculate a round trip time."
  152.     ::= { pingImplementationTypeDomains 3 }
  153.  
  154.  pingTcpConnectionAttempt OBJECT-IDENTITY
  155.     STATUS      current
  156.     DESCRIPTION
  157.         "Indicates that an implementation is attempting to
  158.         connect to a TCP port in order to calculate a round
  159.         trip time."
  160.     ::= { pingImplementationTypeDomains 4 }
  161.  
  162.  -- Simple Object Definitions
  163.  
  164.  pingMaxConcurrentRequests OBJECT-TYPE
  165.     SYNTAX      Unsigned32
  166.     UNITS       "requests"
  167.     MAX-ACCESS  read-write
  168.     STATUS      current
  169.     DESCRIPTION
  170.        "The maximum number of concurrent active ping requests
  171.        that are allowed within an agent implementation.  A value
  172.        of 0 for this object implies that there is no limit for
  173.        the number of concurrent active requests in effect.
  174.  
  175.        The limit applies only to new requests being activated.
  176.        When a new value is set, the agent will continue processing
  177.        all the requests already active, even if their number
  178.        exceeds the limit just imposed."
  179.     DEFVAL { 10 }
  180.     ::= { pingObjects 1 }
  181.  
  182.  -- Ping Control Table
  183.  
  184.  pingCtlTable OBJECT-TYPE
  185.     SYNTAX      SEQUENCE OF PingCtlEntry
  186.     MAX-ACCESS  not-accessible
  187.     STATUS      current
  188.     DESCRIPTION
  189.         "Defines the ping Control Table for providing, via SNMP,
  190.         the capability of performing ping operations at
  191.         a remote host.  The results of these operations are
  192.         stored in the pingResultsTable and the
  193.         pingProbeHistoryTable."
  194.    ::= { pingObjects 2 }
  195.  
  196.  pingCtlEntry OBJECT-TYPE
  197.     SYNTAX      PingCtlEntry
  198.     MAX-ACCESS  not-accessible
  199.     STATUS      current
  200.     DESCRIPTION
  201.         "Defines an entry in the pingCtlTable.  The first index
  202.         element, pingCtlOwnerIndex, is of type SnmpAdminString,
  203.         a textual convention that allows for use of the SNMPv3
  204.         View-Based Access Control Model (RFC 3415, VACM)
  205.         and that allows a management application to identify its
  206.         entries.  The second index, pingCtlTestName (also an
  207.         SnmpAdminString), enables the same management
  208.         application to have multiple outstanding requests."
  209.     INDEX {
  210.              pingCtlOwnerIndex,
  211.              pingCtlTestName
  212.           }
  213.     ::= { pingCtlTable 1 }
  214.  
  215.  PingCtlEntry ::=
  216.     SEQUENCE {
  217.         pingCtlOwnerIndex             SnmpAdminString,
  218.         pingCtlTestName               SnmpAdminString,
  219.         pingCtlTargetAddressType      InetAddressType,
  220.         pingCtlTargetAddress          InetAddress,
  221.         pingCtlDataSize               Unsigned32,
  222.         pingCtlTimeOut                Unsigned32,
  223.         pingCtlProbeCount             Unsigned32,
  224.         pingCtlAdminStatus            INTEGER,
  225.         pingCtlDataFill               OCTET STRING,
  226.         pingCtlFrequency              Unsigned32,
  227.         pingCtlMaxRows                Unsigned32,
  228.         pingCtlStorageType            StorageType,
  229.         pingCtlTrapGeneration         BITS,
  230.         pingCtlTrapProbeFailureFilter Unsigned32,
  231.         pingCtlTrapTestFailureFilter  Unsigned32,
  232.         pingCtlType                   OBJECT IDENTIFIER,
  233.         pingCtlDescr                  SnmpAdminString,
  234.         pingCtlSourceAddressType      InetAddressType,
  235.         pingCtlSourceAddress          InetAddress,
  236.         pingCtlIfIndex                InterfaceIndexOrZero,
  237.         pingCtlByPassRouteTable       TruthValue,
  238.         pingCtlDSField                Unsigned32,
  239.         pingCtlRowStatus              RowStatus
  240.     }
  241.  
  242.  pingCtlOwnerIndex OBJECT-TYPE
  243.     SYNTAX      SnmpAdminString (SIZE(0..32))
  244.     MAX-ACCESS  not-accessible
  245.     STATUS      current
  246.     DESCRIPTION
  247.        "To facilitate the provisioning of access control by a
  248.        security administrator using the View-Based Access
  249.        Control Model (RFC 2575, VACM) for tables in which
  250.        multiple users may need to create or
  251.        modify entries independently, the initial index is used
  252.        as an 'owner index'.  Such an initial index has a syntax
  253.        of SnmpAdminString and can thus be trivially mapped to a
  254.        securityName or groupName defined in VACM, in
  255.        accordance with a security policy.
  256.  
  257.        When used in conjunction with such a security policy, all
  258.        entries in the table belonging to a particular user (or
  259.        group) will have the same value for this initial index.
  260.        For a given user's entries in a particular table, the
  261.        object identifiers for the information in these entries
  262.        will have the same subidentifiers (except for the 'column'
  263.        subidentifier) up to the end of the encoded owner index.
  264.        To configure VACM to permit access to this portion of the
  265.        table, one would create vacmViewTreeFamilyTable entries
  266.        with the value of vacmViewTreeFamilySubtree including
  267.        the owner index portion, and vacmViewTreeFamilyMask
  268.        'wildcarding' the column subidentifier.  More elaborate
  269.        configurations are possible."
  270.     ::= { pingCtlEntry 1 }
  271.  
  272.  pingCtlTestName OBJECT-TYPE
  273.     SYNTAX      SnmpAdminString (SIZE(0..32))
  274.     MAX-ACCESS  not-accessible
  275.     STATUS      current
  276.     DESCRIPTION
  277.         "The name of the ping test.  This is locally unique, within
  278.         the scope of a pingCtlOwnerIndex."
  279.     ::= { pingCtlEntry 2 }
  280.  
  281.  pingCtlTargetAddressType OBJECT-TYPE
  282.     SYNTAX      InetAddressType
  283.     MAX-ACCESS  read-create
  284.     STATUS      current
  285.     DESCRIPTION
  286.         "Specifies the type of host address to be used at a remote
  287.         host for performing a ping operation."
  288.     DEFVAL { unknown }
  289.     ::= { pingCtlEntry 3 }
  290.  
  291.  pingCtlTargetAddress OBJECT-TYPE
  292.     SYNTAX      InetAddress
  293.     MAX-ACCESS  read-create
  294.     STATUS      current
  295.     DESCRIPTION
  296.         "Specifies the host address to be used at a remote host for
  297.         performing a ping operation.  The host address type is
  298.         determined by the value of the corresponding
  299.         pingCtlTargetAddressType.
  300.  
  301.         A value for this object MUST be set prior to transitioning
  302.         its corresponding pingCtlEntry to active(1) via
  303.         pingCtlRowStatus."
  304.     DEFVAL { ''H }
  305.     ::= { pingCtlEntry 4 }
  306.  
  307.  pingCtlDataSize OBJECT-TYPE
  308.     SYNTAX      Unsigned32 (0..65507)
  309.     UNITS       "octets"
  310.     MAX-ACCESS  read-create
  311.     STATUS      current
  312.     DESCRIPTION
  313.         "Specifies the size of the data portion to be
  314.         transmitted in a ping operation, in octets.  Whether this
  315.         value can be applied depends on the selected
  316.         implementation method for performing a ping operation,
  317.         indicated by pingCtlType in the same conceptual row.
  318.         If the method used allows applying the value contained
  319.  
  320.         in this object, then it MUST be applied.  If the specified
  321.         size is not appropriate for the chosen ping method, the
  322.         implementation SHOULD use whatever size (appropriate to
  323.         the method) is closest to the specified size.
  324.  
  325.         The maximum value for this object was computed by
  326.         subtracting the smallest possible IP header size of
  327.         20 octets (IPv4 header with no options) and the UDP
  328.         header size of 8 octets from the maximum IP packet size.
  329.         An IP packet has a maximum size of 65535 octets
  330.         (excluding IPv6 Jumbograms)."
  331.     DEFVAL { 0 }
  332.     ::= { pingCtlEntry 5 }
  333.  
  334.  pingCtlTimeOut OBJECT-TYPE
  335.     SYNTAX      Unsigned32 (1..60)
  336.     UNITS       "seconds"
  337.     MAX-ACCESS  read-create
  338.     STATUS      current
  339.     DESCRIPTION
  340.         "Specifies the time-out value, in seconds, for a
  341.         remote ping operation."
  342.     DEFVAL { 3 }
  343.     ::= { pingCtlEntry 6 }
  344.  
  345.  pingCtlProbeCount OBJECT-TYPE
  346.     SYNTAX      Unsigned32 (1..15)
  347.     UNITS       "probes"
  348.     MAX-ACCESS  read-create
  349.     STATUS      current
  350.     DESCRIPTION
  351.         "Specifies the number of times to perform a ping
  352.         operation at a remote host as part of a single ping test."
  353.     DEFVAL { 1 }
  354.     ::= { pingCtlEntry 7 }
  355.  
  356.  pingCtlAdminStatus OBJECT-TYPE
  357.     SYNTAX      INTEGER {
  358.                           enabled(1), -- test should be started
  359.                           disabled(2) -- test should be stopped
  360.                         }
  361.     MAX-ACCESS  read-create
  362.     STATUS      current
  363.     DESCRIPTION
  364.         "Reflects the desired state that a pingCtlEntry should be
  365.         in:
  366.  
  367.            enabled(1)  - Attempt to activate the test as defined by
  368.                          this pingCtlEntry.
  369.            disabled(2) - Deactivate the test as defined by this
  370.                          pingCtlEntry.
  371.  
  372.         Refer to the corresponding pingResultsOperStatus to
  373.         determine the operational state of the test defined by
  374.         this entry."
  375.      DEFVAL { disabled }
  376.     ::= { pingCtlEntry 8 }
  377.  
  378.  pingCtlDataFill  OBJECT-TYPE
  379.     SYNTAX      OCTET STRING (SIZE(0..1024))
  380.     MAX-ACCESS  read-create
  381.     STATUS      current
  382.     DESCRIPTION
  383.         "The content of this object is used together with the
  384.         corresponding pingCtlDataSize value to determine how to
  385.         fill the data portion of a probe packet.  The option of
  386.         selecting a data fill pattern can be useful when links
  387.         are compressed or have data pattern sensitivities.  The
  388.         contents of pingCtlDataFill should be repeated in a ping
  389.         packet when the size of the data portion of the ping
  390.         packet is greater than the size of pingCtlDataFill."
  391.     DEFVAL { '00'H }
  392.     ::= { pingCtlEntry 9 }
  393.  
  394.  pingCtlFrequency  OBJECT-TYPE
  395.     SYNTAX      Unsigned32
  396.     UNITS       "seconds"
  397.     MAX-ACCESS  read-create
  398.     STATUS      current
  399.     DESCRIPTION
  400.         "The number of seconds to wait before repeating a ping test
  401.         as defined by the value of the various objects in the
  402.         corresponding row.
  403.  
  404.         A single ping test consists of a series of ping probes.
  405.         The number of probes is determined by the value of the
  406.         corresponding pingCtlProbeCount object.  After a single
  407.         test is completed the number of seconds as defined by the
  408.         value of pingCtlFrequency MUST elapse before the
  409.         next ping test is started.
  410.  
  411.         A value of 0 for this object implies that the test
  412.         as defined by the corresponding entry will not be
  413.         repeated."
  414.     DEFVAL { 0 }
  415.     ::= { pingCtlEntry 10 }
  416.  
  417.  pingCtlMaxRows OBJECT-TYPE
  418.     SYNTAX      Unsigned32
  419.     UNITS       "rows"
  420.     MAX-ACCESS  read-create
  421.     STATUS      current
  422.     DESCRIPTION
  423.         "The maximum number of corresponding entries allowed
  424.         in the pingProbeHistoryTable.  An implementation of this
  425.         MIB will remove the oldest corresponding entry in the
  426.         pingProbeHistoryTable to allow the addition of an
  427.         new entry once the number of corresponding rows in the
  428.         pingProbeHistoryTable reaches this value.
  429.  
  430.         Old entries are not removed when a new test is
  431.         started.  Entries are added to the pingProbeHistoryTable
  432.         until pingCtlMaxRows is reached before entries begin to
  433.         be removed.
  434.  
  435.         A value of 0 for this object disables creation of
  436.         pingProbeHistoryTable entries."
  437.     DEFVAL      { 50 }
  438.     ::= { pingCtlEntry 11 }
  439.  
  440.  pingCtlStorageType OBJECT-TYPE
  441.     SYNTAX      StorageType
  442.     MAX-ACCESS  read-create
  443.     STATUS      current
  444.     DESCRIPTION
  445.         "The storage type for this conceptual row.
  446.         Conceptual rows having the value 'permanent' need not
  447.         allow write-access to any columnar objects in the row."
  448.     DEFVAL { nonVolatile }
  449.     ::= { pingCtlEntry 12 }
  450.  
  451.  pingCtlTrapGeneration OBJECT-TYPE
  452.     SYNTAX      BITS {
  453.                    probeFailure(0),
  454.                    testFailure(1),
  455.                    testCompletion(2)
  456.                   }
  457.     MAX-ACCESS  read-create
  458.     STATUS      current
  459.     DESCRIPTION
  460.         "The value of this object determines when and whether
  461.         to generate a notification for this entry:
  462.  
  463.         probeFailure(0)   - Generate a pingProbeFailed
  464.             notification subject to the value of
  465.             pingCtlTrapProbeFailureFilter.  The object
  466.             pingCtlTrapProbeFailureFilter can be used
  467.             to specify the number of consecutive probe
  468.             failures that are required before a
  469.             pingProbeFailed notification can be generated.
  470.         testFailure(1)    - Generate a pingTestFailed
  471.             notification.  In this instance the object
  472.             pingCtlTrapTestFailureFilter can be used to
  473.             determine the number of probe failures that
  474.             signal when a test fails.
  475.         testCompletion(2) - Generate a pingTestCompleted
  476.             notification.
  477.  
  478.         By default, no bits are set, indicating that
  479.         none of the above options is selected."
  480.     DEFVAL { {} }  -- no bits set.
  481.     ::= { pingCtlEntry 13 }
  482.  
  483.  pingCtlTrapProbeFailureFilter OBJECT-TYPE
  484.     SYNTAX      Unsigned32 (0..15)
  485.     MAX-ACCESS  read-create
  486.     STATUS      current
  487.     DESCRIPTION
  488.         "The value of this object is used to determine when
  489.         to generate a pingProbeFailed NOTIFICATION.
  490.  
  491.         Setting BIT probeFailure(0) of object
  492.         pingCtlTrapGeneration to '1' implies that a
  493.         pingProbeFailed NOTIFICATION is generated only when
  494.  
  495.         a number of consecutive ping probes equal to the
  496.         value of pingCtlTrapProbeFailureFilter fail within
  497.         a given ping test.  After triggering the notification,
  498.         the probe failure counter is reset to zero."
  499.     DEFVAL { 1 }
  500.     ::= { pingCtlEntry 14 }
  501.  
  502.  pingCtlTrapTestFailureFilter OBJECT-TYPE
  503.     SYNTAX      Unsigned32 (0..15)
  504.     MAX-ACCESS  read-create
  505.     STATUS      current
  506.     DESCRIPTION
  507.         "The value of this object is used to determine when
  508.         to generate a pingTestFailed NOTIFICATION.
  509.  
  510.         Setting BIT testFailure(1) of object
  511.  
  512.         pingCtlTrapGeneration to '1' implies that a
  513.         pingTestFailed NOTIFICATION is generated only when
  514.         a number of consecutive ping tests equal to the
  515.         value of pingCtlTrapProbeFailureFilter fail.
  516.         After triggering the notification, the test failure
  517.         counter is reset to zero."
  518.     DEFVAL { 1 }
  519.     ::= { pingCtlEntry 15 }
  520.  
  521.  pingCtlType OBJECT-TYPE
  522.     SYNTAX      OBJECT IDENTIFIER
  523.     MAX-ACCESS  read-create
  524.     STATUS      current
  525.     DESCRIPTION
  526.         "The value of this object is used either to report or
  527.         to select the implementation method to be used for
  528.         calculating a ping response time.  The value of this
  529.         object MAY be selected from pingImplementationTypeDomains.
  530.  
  531.         Additional implementation types SHOULD be allocated as
  532.         required by implementers of the DISMAN-PING-MIB under
  533.         their enterprise-specific registration point and not
  534.         beneath pingImplementationTypeDomains."
  535.     DEFVAL { pingIcmpEcho }
  536.     ::= { pingCtlEntry 16 }
  537.  
  538.  pingCtlDescr OBJECT-TYPE
  539.     SYNTAX      SnmpAdminString
  540.     MAX-ACCESS  read-create
  541.     STATUS      current
  542.     DESCRIPTION
  543.         "The purpose of this object is to provide a
  544.         descriptive name of the remote ping test."
  545.     DEFVAL { ''H }
  546.     ::= { pingCtlEntry 17 }
  547.  
  548.  pingCtlSourceAddressType OBJECT-TYPE
  549.     SYNTAX      InetAddressType
  550.     MAX-ACCESS  read-create
  551.     STATUS      current
  552.     DESCRIPTION
  553.         "Specifies the type of the source address,
  554.         pingCtlSourceAddress, to be used at a remote host
  555.         when a ping operation is performed."
  556.     DEFVAL { unknown }
  557.     ::= { pingCtlEntry 18 }
  558.  
  559.   pingCtlSourceAddress OBJECT-TYPE
  560.     SYNTAX      InetAddress
  561.     MAX-ACCESS  read-create
  562.     STATUS      current
  563.     DESCRIPTION
  564.         "Use the specified IP address (which must be given in
  565.         numeric form, not as a hostname) as the source address
  566.         in outgoing probe packets.  On hosts with more than one
  567.         IP address, this option can be used to select the address
  568.         to be used.  If the IP address is not one of this
  569.         machine's interface addresses, an error is returned and
  570.         nothing is sent.  A zero-length octet string value for
  571.         this object disables source address specification.
  572.  
  573.         The address type (InetAddressType) that relates to
  574.         this object is specified by the corresponding value
  575.         of pingCtlSourceAddressType."
  576.     DEFVAL { ''H }
  577.     ::= { pingCtlEntry 19 }
  578.  
  579.  pingCtlIfIndex OBJECT-TYPE
  580.     SYNTAX      InterfaceIndexOrZero
  581.     MAX-ACCESS  read-create
  582.     STATUS      current
  583.     DESCRIPTION
  584.         "Setting this object to an interface's ifIndex prior
  585.         to starting a remote ping operation directs
  586.         the ping probes to be transmitted over the
  587.         specified interface.  A value of zero for this object
  588.         means that this option is not enabled."
  589.     DEFVAL { 0 }
  590.     ::= { pingCtlEntry 20 }
  591.  
  592.  pingCtlByPassRouteTable OBJECT-TYPE
  593.     SYNTAX      TruthValue
  594.     MAX-ACCESS  read-create
  595.     STATUS      current
  596.     DESCRIPTION
  597.        "The purpose of this object is to enable optional
  598.        bypassing the route table.  If enabled, the remote
  599.        host will bypass the normal routing tables and send
  600.        directly to a host on an attached network.  If the
  601.        host is not on a directly attached network, an
  602.        error is returned.  This option can be used to perform
  603.        the ping operation to a local host through an
  604.        interface that has no route defined (e.g., after the
  605.        interface was dropped by the routing daemon at the host)."
  606.     DEFVAL { false }
  607.     ::= { pingCtlEntry 21 }
  608.  
  609.  pingCtlDSField OBJECT-TYPE
  610.     SYNTAX      Unsigned32 (0..255)
  611.     MAX-ACCESS  read-create
  612.     STATUS      current
  613.     DESCRIPTION
  614.         "Specifies the value to store in the Type of Service
  615.         (TOS) octet in the IPv4 header or in the Traffic
  616.         Class octet in the IPv6 header, respectively, of the
  617.         IP packet used to encapsulate the ping probe.
  618.  
  619.         The octet to be set in the IP header contains the
  620.         Differentiated Services (DS) Field in the six most
  621.         significant bits.
  622.  
  623.         This option can be used to determine what effect an
  624.         explicit DS Field setting has on a ping response.
  625.         Not all values are legal or meaningful.  A value of 0
  626.         means that the function represented by this option is
  627.         not supported.  DS Field usage is often not supported
  628.         by IP implementations, and not all values are supported.
  629.         Refer to RFC 2474 and RFC 3260 for guidance on usage of
  630.         this field."
  631.     REFERENCE
  632.         "Refer to RFC 1812 for the definition of the IPv4 TOS
  633.         octet and to RFC 2460 for the definition of the IPv6
  634.         Traffic Class octet.  Refer to RFC 2474 and RFC 3260
  635.         for the definition of the Differentiated Services Field."
  636.     DEFVAL { 0 }
  637.     ::= { pingCtlEntry 22 }
  638.  
  639.  pingCtlRowStatus OBJECT-TYPE
  640.     SYNTAX      RowStatus
  641.     MAX-ACCESS  read-create
  642.     STATUS      current
  643.     DESCRIPTION
  644.         "This object allows entries to be created and deleted
  645.         in the pingCtlTable.  Deletion of an entry in this
  646.         table results in the deletion of all corresponding (same
  647.         pingCtlOwnerIndex and pingCtlTestName index values)
  648.         pingResultsTable and pingProbeHistoryTable entries.
  649.  
  650.         A value MUST be specified for pingCtlTargetAddress
  651.         prior to acceptance of a transition to active(1) state.
  652.  
  653.         When a value for pingCtlTargetAddress is set,
  654.         the value of object pingCtlRowStatus changes
  655.         from notReady(3) to notInService(2).
  656.  
  657.         Activation of a remote ping operation is controlled
  658.         via pingCtlAdminStatus, not by changing
  659.         this object's value to active(1).
  660.  
  661.         Transitions in and out of active(1) state are not
  662.         allowed while an entry's pingResultsOperStatus is
  663.         active(1), with the exception that deletion of
  664.         an entry in this table by setting its RowStatus
  665.         object to destroy(6) will stop an active
  666.         ping operation.
  667.  
  668.         The operational state of a ping operation
  669.         can be determined by examination of its
  670.         pingResultsOperStatus object."
  671.     REFERENCE
  672.         "See definition of RowStatus in RFC 2579, 'Textual
  673.         Conventions for SMIv2.'"
  674.     ::= { pingCtlEntry 23 }
  675.  
  676. -- Ping Results Table
  677.  
  678.  pingResultsTable OBJECT-TYPE
  679.     SYNTAX      SEQUENCE OF PingResultsEntry
  680.     MAX-ACCESS  not-accessible
  681.     STATUS      current
  682.     DESCRIPTION
  683.         "Defines the Ping Results Table for providing
  684.         the capability of performing ping operations at
  685.         a remote host.  The results of these operations are
  686.         stored in the pingResultsTable and the pingProbeHistoryTable.
  687.  
  688.         An entry is added to the pingResultsTable when an
  689.         pingCtlEntry is started by successful transition
  690.         of its pingCtlAdminStatus object to enabled(1).
  691.  
  692.         If the object pingCtlAdminStatus already has the value
  693.         enabled(1), and if the corresponding pingResultsOperStatus
  694.         object has the value completed(3), then successfully writing
  695.         enabled(1) to object pingCtlAdminStatus re-initializes the
  696.         already existing entry in the pingResultsTable.  The values
  697.         of objects in the re-initialized entry are the same as the
  698.         values of objects in a new entry would be.
  699.  
  700.         An entry is removed from the pingResultsTable when
  701.         its corresponding pingCtlEntry is deleted."
  702.    ::= { pingObjects 3 }
  703.  
  704.  pingResultsEntry OBJECT-TYPE
  705.     SYNTAX      PingResultsEntry
  706.     MAX-ACCESS  not-accessible
  707.     STATUS      current
  708.     DESCRIPTION
  709.         "Defines an entry in the pingResultsTable.  The
  710.         pingResultsTable has the same indexing as the
  711.         pingCtlTable so that a pingResultsEntry
  712.         corresponds to the pingCtlEntry that caused it to
  713.         be created."
  714.     INDEX {
  715.              pingCtlOwnerIndex,
  716.              pingCtlTestName
  717.           }
  718.     ::= { pingResultsTable 1 }
  719.  
  720.  PingResultsEntry ::=
  721.     SEQUENCE {
  722.         pingResultsOperStatus          INTEGER,
  723.         pingResultsIpTargetAddressType InetAddressType,
  724.         pingResultsIpTargetAddress     InetAddress,
  725.         pingResultsMinRtt              Unsigned32,
  726.         pingResultsMaxRtt              Unsigned32,
  727.         pingResultsAverageRtt          Unsigned32,
  728.         pingResultsProbeResponses      Gauge32,
  729.         pingResultsSentProbes          Gauge32,
  730.         pingResultsRttSumOfSquares     Unsigned32,
  731.         pingResultsLastGoodProbe       DateAndTime
  732.      }
  733.  
  734.  pingResultsOperStatus OBJECT-TYPE
  735.     SYNTAX      INTEGER {
  736.                           enabled(1),   -- test is in progress
  737.                           disabled(2),  -- test has stopped
  738.                           completed(3)  -- test is completed
  739.                         }
  740.     MAX-ACCESS  read-only
  741.     STATUS      current
  742.     DESCRIPTION
  743.         "Reflects the operational state of a pingCtlEntry:
  744.  
  745.            enabled(1)    - Test is active.
  746.            disabled(2)   - Test has stopped.
  747.            completed(3)  - Test is completed."
  748.     ::= { pingResultsEntry 1 }
  749.  
  750.  pingResultsIpTargetAddressType OBJECT-TYPE
  751.     SYNTAX      InetAddressType
  752.     MAX-ACCESS  read-only
  753.     STATUS      current
  754.     DESCRIPTION
  755.         "This object indicates the type of address stored
  756.         in the corresponding pingResultsIpTargetAddress
  757.         object."
  758.     DEFVAL { unknown }
  759.     ::= { pingResultsEntry 2 }
  760.  
  761.  pingResultsIpTargetAddress OBJECT-TYPE
  762.     SYNTAX      InetAddress
  763.     MAX-ACCESS  read-only
  764.     STATUS      current
  765.     DESCRIPTION
  766.         "This object reports the IP address associated
  767.         with a pingCtlTargetAddress value when the destination
  768.         address is specified as a DNS name.  The value of
  769.         this object should be a zero-length octet string
  770.         when a DNS name is not specified or when a
  771.         specified DNS name fails to resolve.
  772.  
  773.         The address type (InetAddressType) that relates to
  774.         this object is specified by the corresponding value
  775.         of pingResultsIpTargetAddressType."
  776.     DEFVAL { ''H }
  777.     ::= { pingResultsEntry 3 }
  778.  
  779.  pingResultsMinRtt OBJECT-TYPE
  780.     SYNTAX      Unsigned32
  781.     UNITS       "milliseconds"
  782.     MAX-ACCESS  read-only
  783.     STATUS      current
  784.     DESCRIPTION
  785.         "The minimum ping round-trip-time (RTT) received.  A value
  786.         of 0 for this object implies that no RTT has been received."
  787.     ::= { pingResultsEntry 4 }
  788.  
  789.  pingResultsMaxRtt OBJECT-TYPE
  790.     SYNTAX      Unsigned32
  791.     UNITS       "milliseconds"
  792.     MAX-ACCESS  read-only
  793.     STATUS      current
  794.     DESCRIPTION
  795.         "The maximum ping round-trip-time (RTT) received.  A value
  796.         of 0 for this object implies that no RTT has been received."
  797.     ::= { pingResultsEntry 5 }
  798.  
  799.   pingResultsAverageRtt OBJECT-TYPE
  800.     SYNTAX      Unsigned32
  801.     UNITS       "milliseconds"
  802.     MAX-ACCESS  read-only
  803.     STATUS      current
  804.     DESCRIPTION
  805.         "The current average ping round-trip-time (RTT)."
  806.     ::= { pingResultsEntry 6 }
  807.  
  808.   pingResultsProbeResponses OBJECT-TYPE
  809.     SYNTAX      Gauge32
  810.     UNITS       "responses"
  811.     MAX-ACCESS  read-only
  812.     STATUS      current
  813.     DESCRIPTION
  814.         "Number of responses received for the corresponding
  815.         pingCtlEntry and pingResultsEntry.  The value of this object
  816.         MUST be reported as 0 when no probe responses have been
  817.         received."
  818.     ::= { pingResultsEntry 7 }
  819.  
  820.   pingResultsSentProbes OBJECT-TYPE
  821.     SYNTAX      Gauge32
  822.     UNITS       "probes"
  823.     MAX-ACCESS  read-only
  824.     STATUS      current
  825.     DESCRIPTION
  826.         "The value of this object reflects the number of probes sent
  827.         for the corresponding pingCtlEntry and pingResultsEntry.
  828.         The value of this object MUST be reported as 0 when no probes
  829.         have been sent."
  830.     ::= { pingResultsEntry 8 }
  831.  
  832.   pingResultsRttSumOfSquares OBJECT-TYPE
  833.     SYNTAX      Unsigned32
  834.     UNITS       "milliseconds"
  835.     MAX-ACCESS  read-only
  836.     STATUS      current
  837.     DESCRIPTION
  838.         "This object contains the sum of the squares for all ping
  839.         responses received.  Its purpose is to enable standard
  840.         deviation calculation.  The value of this object MUST
  841.         be reported as 0 when no ping responses have been
  842.         received."
  843.     ::= { pingResultsEntry 9 }
  844.  
  845.  pingResultsLastGoodProbe OBJECT-TYPE
  846.     SYNTAX      DateAndTime
  847.     MAX-ACCESS  read-only
  848.     STATUS      current
  849.     DESCRIPTION
  850.         "Date and time when the last response was received for
  851.         a probe."
  852.     ::= { pingResultsEntry 10 }
  853.  
  854.  -- Ping Probe History Table
  855.  
  856.  pingProbeHistoryTable OBJECT-TYPE
  857.     SYNTAX      SEQUENCE OF PingProbeHistoryEntry
  858.     MAX-ACCESS  not-accessible
  859.     STATUS      current
  860.     DESCRIPTION
  861.         "Defines a table for storing the results of ping
  862.         operations.  The number of entries in this table is
  863.         limited per entry in the pingCtlTable by the value
  864.         of the corresponding pingCtlMaxRows object.
  865.  
  866.         An entry in this table is created when the result of
  867.         a ping probe is determined.  The initial 2 instance
  868.         identifier index values identify the pingCtlEntry
  869.         that a probe result (pingProbeHistoryEntry) belongs
  870.         to.  An entry is removed from this table when
  871.         its corresponding pingCtlEntry is deleted.
  872.  
  873.         An implementation of this MIB will remove the oldest
  874.         entry in the pingProbeHistoryTable of the
  875.         corresponding entry in the pingCtlTable to allow
  876.         the addition of an new entry once the number of rows
  877.         in the pingProbeHistoryTable reaches the value
  878.         specified by pingCtlMaxRows for the corresponding
  879.         entry in the pingCtlTable."
  880.    ::= { pingObjects 4 }
  881.  
  882.  pingProbeHistoryEntry OBJECT-TYPE
  883.     SYNTAX      PingProbeHistoryEntry
  884.     MAX-ACCESS  not-accessible
  885.     STATUS      current
  886.     DESCRIPTION
  887.         "Defines an entry in the pingProbeHistoryTable.
  888.         The first two index elements identify the
  889.         pingCtlEntry that a pingProbeHistoryEntry belongs
  890.         to.  The third index element selects a single
  891.         probe result."
  892.     INDEX {
  893.  
  894.              pingCtlOwnerIndex,
  895.              pingCtlTestName,
  896.              pingProbeHistoryIndex
  897.            }
  898.     ::= { pingProbeHistoryTable 1 }
  899.  
  900.  PingProbeHistoryEntry ::=
  901.     SEQUENCE {
  902.         pingProbeHistoryIndex         Unsigned32,
  903.         pingProbeHistoryResponse      Unsigned32,
  904.         pingProbeHistoryStatus        OperationResponseStatus,
  905.         pingProbeHistoryLastRC        Integer32,
  906.         pingProbeHistoryTime          DateAndTime
  907.     }
  908.  
  909.  pingProbeHistoryIndex OBJECT-TYPE
  910.     SYNTAX      Unsigned32 (1..'ffffffff'h)
  911.     MAX-ACCESS  not-accessible
  912.     STATUS      current
  913.     DESCRIPTION
  914.         "An entry in this table is created when the result of
  915.         a ping probe is determined.  The initial 2 instance
  916.         identifier index values identify the pingCtlEntry
  917.         that a probe result (pingProbeHistoryEntry) belongs
  918.         to.
  919.  
  920.         An implementation MUST start assigning
  921.         pingProbeHistoryIndex values at 1 and wrap after
  922.         exceeding the maximum possible value as defined by
  923.         the limit of this object ('ffffffff'h)."
  924.     ::= { pingProbeHistoryEntry 1 }
  925.  
  926.  pingProbeHistoryResponse OBJECT-TYPE
  927.     SYNTAX      Unsigned32
  928.     UNITS       "milliseconds"
  929.     MAX-ACCESS  read-only
  930.     STATUS      current
  931.     DESCRIPTION
  932.         "The amount of time measured in milliseconds from when
  933.         a probe was sent to when its response was received or
  934.         when it timed out.  The value of this object is reported
  935.         as 0 when it is not possible to transmit a probe."
  936.     ::= { pingProbeHistoryEntry 2 }
  937.  
  938.  pingProbeHistoryStatus OBJECT-TYPE
  939.     SYNTAX      OperationResponseStatus
  940.     MAX-ACCESS  read-only
  941.     STATUS      current
  942.     DESCRIPTION
  943.         "The result of a particular probe done by a remote host."
  944.     ::= { pingProbeHistoryEntry 3 }
  945.  
  946.  pingProbeHistoryLastRC        OBJECT-TYPE
  947.     SYNTAX      Integer32
  948.     MAX-ACCESS  read-only
  949.     STATUS      current
  950.     DESCRIPTION
  951.         "The last implementation-method-specific reply code received.
  952.         If the ICMP Echo capability is being used, then a successful
  953.         probe ends when an ICMP response is received that contains
  954.         the code ICMP_ECHOREPLY(0).  The ICMP codes are maintained
  955.         by IANA.  Standardized ICMP codes are listed at
  956.         http://www.iana.org/assignments/icmp-parameters.
  957.         The ICMPv6 codes are listed at
  958.         http://www.iana.org/assignments/icmpv6-parameters."
  959.     ::= { pingProbeHistoryEntry 4 }
  960.  
  961.  pingProbeHistoryTime OBJECT-TYPE
  962.     SYNTAX      DateAndTime
  963.     MAX-ACCESS  read-only
  964.     STATUS      current
  965.     DESCRIPTION
  966.         "Timestamp for when this probe result was determined."
  967.     ::= { pingProbeHistoryEntry 5 }
  968.  
  969.  -- Notification Definition section
  970.  
  971.  pingProbeFailed NOTIFICATION-TYPE
  972.       OBJECTS {
  973.         pingCtlTargetAddressType,
  974.         pingCtlTargetAddress,
  975.         pingResultsOperStatus,
  976.         pingResultsIpTargetAddressType,
  977.         pingResultsIpTargetAddress,
  978.         pingResultsMinRtt,
  979.         pingResultsMaxRtt,
  980.         pingResultsAverageRtt,
  981.         pingResultsProbeResponses,
  982.         pingResultsSentProbes,
  983.         pingResultsRttSumOfSquares,
  984.         pingResultsLastGoodProbe
  985.       }
  986.       STATUS  current
  987.       DESCRIPTION
  988.           "Generated when a probe failure is detected, when the
  989.  
  990.           corresponding pingCtlTrapGeneration object is set to
  991.           probeFailure(0), subject to the value of
  992.           pingCtlTrapProbeFailureFilter.  The object
  993.           pingCtlTrapProbeFailureFilter can be used to specify the
  994.           number of consecutive probe failures that are required
  995.           before this notification can be generated."
  996.       ::= { pingNotifications 1 }
  997.  
  998.  pingTestFailed NOTIFICATION-TYPE
  999.       OBJECTS {
  1000.         pingCtlTargetAddressType,
  1001.         pingCtlTargetAddress,
  1002.         pingResultsOperStatus,
  1003.         pingResultsIpTargetAddressType,
  1004.         pingResultsIpTargetAddress,
  1005.         pingResultsMinRtt,
  1006.         pingResultsMaxRtt,
  1007.         pingResultsAverageRtt,
  1008.         pingResultsProbeResponses,
  1009.         pingResultsSentProbes,
  1010.         pingResultsRttSumOfSquares,
  1011.         pingResultsLastGoodProbe
  1012.       }
  1013.       STATUS  current
  1014.       DESCRIPTION
  1015.           "Generated when a ping test is determined to have failed,
  1016.           when the corresponding pingCtlTrapGeneration object is
  1017.           set to testFailure(1).  In this instance,
  1018.           pingCtlTrapTestFailureFilter should specify the number of
  1019.           probes in a test required to have failed in order to
  1020.           consider the test failed."
  1021.       ::= { pingNotifications 2 }
  1022.  
  1023.  pingTestCompleted NOTIFICATION-TYPE
  1024.       OBJECTS {
  1025.         pingCtlTargetAddressType,
  1026.         pingCtlTargetAddress,
  1027.         pingResultsOperStatus,
  1028.         pingResultsIpTargetAddressType,
  1029.         pingResultsIpTargetAddress,
  1030.         pingResultsMinRtt,
  1031.         pingResultsMaxRtt,
  1032.         pingResultsAverageRtt,
  1033.         pingResultsProbeResponses,
  1034.         pingResultsSentProbes,
  1035.         pingResultsRttSumOfSquares,
  1036.         pingResultsLastGoodProbe
  1037.  
  1038.       }
  1039.       STATUS  current
  1040.       DESCRIPTION
  1041.           "Generated at the completion of a ping test when the
  1042.           corresponding pingCtlTrapGeneration object has the
  1043.           testCompletion(2) bit set."
  1044.       ::= { pingNotifications 3 }
  1045.  
  1046.  -- Conformance information
  1047.  
  1048.  -- Compliance statements
  1049.  
  1050.  pingCompliances OBJECT IDENTIFIER ::= { pingConformance 1 }
  1051.  pingGroups      OBJECT IDENTIFIER ::= { pingConformance 2 }
  1052.  
  1053.  -- Compliance statements
  1054.  
  1055.  pingFullCompliance MODULE-COMPLIANCE
  1056.     STATUS  current
  1057.     DESCRIPTION
  1058.             "The compliance statement for SNMP entities that
  1059.             fully implement the DISMAN-PING-MIB."
  1060.     MODULE  -- this module
  1061.         MANDATORY-GROUPS {
  1062.                             pingMinimumGroup,
  1063.                             pingCtlRowStatusGroup,
  1064.                             pingHistoryGroup,
  1065.                             pingNotificationsGroup
  1066.                           }
  1067.  
  1068.         OBJECT pingMaxConcurrentRequests
  1069.         MIN-ACCESS  read-only
  1070.         DESCRIPTION
  1071.             "The agent is not required to support set
  1072.             operations to this object."
  1073.  
  1074.         OBJECT pingCtlStorageType
  1075.         MIN-ACCESS  read-only
  1076.         DESCRIPTION
  1077.             "Write access is not required."
  1078.  
  1079.         OBJECT pingCtlType
  1080.         MIN-ACCESS  read-only
  1081.         DESCRIPTION
  1082.             "Write access is not required.  In addition, the only
  1083.             value that MUST be supported by an implementation is
  1084.             pingIcmpEcho."
  1085.  
  1086.         OBJECT pingCtlSourceAddressType
  1087.         SYNTAX  InetAddressType { unknown(0), ipv4(1), ipv6(2) }
  1088.         MIN-ACCESS  read-only
  1089.         DESCRIPTION
  1090.             "Write access to this object is not required by
  1091.             implementations that are not capable of binding the
  1092.             send socket with a source address.  An implementation
  1093.             is only required to support IPv4 and IPv6 addresses."
  1094.  
  1095.         OBJECT pingCtlSourceAddress
  1096.         SYNTAX  InetAddress (SIZE(0|4|16))
  1097.         MIN-ACCESS  read-only
  1098.         DESCRIPTION
  1099.             "Write access to this object is not required by
  1100.             implementations that are not capable of binding the
  1101.             send socket with a source address.  An implementation
  1102.             is only required to support IPv4 and IPv6 addresses."
  1103.  
  1104.         OBJECT pingCtlIfIndex
  1105.         MIN-ACCESS  read-only
  1106.         DESCRIPTION
  1107.             "Write access is not required.  If write access is
  1108.             not supported, return a 0 as the value of this object.
  1109.             A value of 0 means that the function represented by
  1110.             this option is not supported."
  1111.  
  1112.         OBJECT pingCtlByPassRouteTable
  1113.         MIN-ACCESS  read-only
  1114.         DESCRIPTION
  1115.             "Write access to this object is not required by
  1116.             implementations that are not capable of its
  1117.             implementation.  The function represented by this
  1118.             object is implementable if the setsockopt
  1119.             SOL_SOCKET SO_DONTROUTE option is supported."
  1120.  
  1121.         OBJECT pingCtlDSField
  1122.         MIN-ACCESS  read-only
  1123.         DESCRIPTION
  1124.             "Write access is not required.  If write access is
  1125.             not supported, return a 0 as the value of this object.
  1126.             A value of 0 means that the function represented by
  1127.             this option is not supported."
  1128.  
  1129.         OBJECT pingResultsIpTargetAddressType
  1130.         SYNTAX  InetAddressType { unknown(0), ipv4(1), ipv6(2) }
  1131.         DESCRIPTION
  1132.             "An implementation is only required to
  1133.  
  1134.             support IPv4 and IPv6 addresses."
  1135.  
  1136.         OBJECT pingResultsIpTargetAddress
  1137.         SYNTAX  InetAddress (SIZE(0|4|16))
  1138.         DESCRIPTION
  1139.             "An implementation is only required to
  1140.             support IPv4 and globally unique IPv6 addresses."
  1141.  
  1142.         OBJECT pingResultsLastGoodProbe
  1143.         DESCRIPTION
  1144.             "This object is mandatory for implementations that have
  1145.             access to a system clock and that are capable of setting
  1146.             the values for DateAndTime objects.  It is RECOMMENDED
  1147.             that when this object is not supported its values
  1148.             be reported as '0000000000000000'H."
  1149.  
  1150.         OBJECT pingProbeHistoryTime
  1151.         DESCRIPTION
  1152.             "This object is mandatory for implementations that have
  1153.             access to a system clock and that are capable of setting
  1154.             the values for DateAndTime objects.  It is RECOMMENDED
  1155.             that when this object is not supported its values
  1156.             be reported as '0000000000000000'H."
  1157.     ::= { pingCompliances 2 }
  1158.  
  1159.  pingMinimumCompliance MODULE-COMPLIANCE
  1160.     STATUS  current
  1161.     DESCRIPTION
  1162.             "The minimum compliance statement for SNMP entities
  1163.             that implement the minimal subset of the
  1164.             DISMAN-PING-MIB.  Implementors might choose this
  1165.             subset for small devices with limited resources."
  1166.     MODULE  -- this module
  1167.         MANDATORY-GROUPS { pingMinimumGroup }
  1168.  
  1169.         GROUP pingCtlRowStatusGroup
  1170.         DESCRIPTION
  1171.             "A compliant implementation does not have to implement
  1172.             the pingCtlRowStatusGroup."
  1173.  
  1174.         GROUP pingHistoryGroup
  1175.         DESCRIPTION
  1176.             "A compliant implementation does not have to implement
  1177.             the pingHistoryGroup."
  1178.  
  1179.         GROUP pingNotificationsGroup
  1180.         DESCRIPTION
  1181.             "A compliant implementation does not have to implement
  1182.  
  1183.             the pingNotificationsGroup."
  1184.  
  1185.         OBJECT pingMaxConcurrentRequests
  1186.         MIN-ACCESS  read-only
  1187.         DESCRIPTION
  1188.             "The agent is not required to support set
  1189.             operations to this object."
  1190.  
  1191.         OBJECT pingCtlDataFill
  1192.         MIN-ACCESS  read-only
  1193.         DESCRIPTION
  1194.             "The agent is not required to support set
  1195.             operations to this object."
  1196.  
  1197.         OBJECT pingCtlFrequency
  1198.         MIN-ACCESS  read-only
  1199.         DESCRIPTION
  1200.             "Write access is not required.  If write access is
  1201.             not supported, return a 0 as the value of this object.
  1202.             A value of 0 means that the function represented by
  1203.             this option is not supported."
  1204.  
  1205.         OBJECT pingCtlMaxRows
  1206.         MIN-ACCESS  read-only
  1207.         DESCRIPTION
  1208.             "Write access is not required.  If the
  1209.             pingHistoryGroup is not implemented, then write
  1210.             access to this object MUST be disabled, and the object
  1211.             MUST return a value of 0 when retrieved."
  1212.  
  1213.         OBJECT pingCtlStorageType
  1214.         MIN-ACCESS  read-only
  1215.         DESCRIPTION
  1216.             "Write access is not required."
  1217.  
  1218.         OBJECT pingCtlTrapGeneration
  1219.         MIN-ACCESS  read-only
  1220.         DESCRIPTION
  1221.             "Write access is not required.  If the
  1222.             pingNotificationsGroup is not implemented, then write
  1223.             access to this object MUST be disabled, and the object
  1224.             MUST return a value with no bit set when retrieved.
  1225.             No bit set indicates that not notification is
  1226.             generated."
  1227.  
  1228.         OBJECT pingCtlTrapProbeFailureFilter
  1229.         MIN-ACCESS  read-only
  1230.         DESCRIPTION
  1231.             "If write access to pingCtlTrapGeneration is not
  1232.             supported, then write access to this object must also
  1233.             not be supported.  In this case, return 0 as the value
  1234.             of this object."
  1235.  
  1236.         OBJECT pingCtlTrapTestFailureFilter
  1237.         MIN-ACCESS  read-only
  1238.         DESCRIPTION
  1239.             "If write access to pingCtlTrapGeneration is not
  1240.             supported, then write access to this object must also
  1241.             not be supported.  In this case, return 0 as the value
  1242.             of this object."
  1243.  
  1244.         OBJECT pingCtlType
  1245.         MIN-ACCESS  read-only
  1246.         DESCRIPTION
  1247.             "Write access is not required.  In addition, the only
  1248.             value that MUST be supported by an implementation is
  1249.             pingIcmpEcho."
  1250.  
  1251.         OBJECT pingCtlDescr
  1252.         MIN-ACCESS  read-only
  1253.         DESCRIPTION
  1254.             "The agent is not required to support set
  1255.             operations to this object."
  1256.  
  1257.         OBJECT pingCtlSourceAddressType
  1258.         SYNTAX  InetAddressType { unknown(0), ipv4(1), ipv6(2) }
  1259.         MIN-ACCESS  read-only
  1260.         DESCRIPTION
  1261.             "Write access to this object is not required by
  1262.             implementations that are not capable of binding the
  1263.             send socket with a source address.  An implementation
  1264.             is only required to support IPv4 and IPv6 addresses."
  1265.  
  1266.         OBJECT pingCtlSourceAddress
  1267.         SYNTAX  InetAddress (SIZE(0|4|16))
  1268.         MIN-ACCESS  read-only
  1269.         DESCRIPTION
  1270.             "Write access to this object is not required by
  1271.             implementations that are not capable of binding the
  1272.             send socket with a source address.  An implementation
  1273.             is only required to support IPv4 and IPv6 addresses."
  1274.  
  1275.         OBJECT pingCtlIfIndex
  1276.         MIN-ACCESS  read-only
  1277.         DESCRIPTION
  1278.             "Write access is not required.  If write access is
  1279.  
  1280.             not supported, return a 0 as the value of this object.
  1281.             A value of 0 means that the function represented by
  1282.             this option is not supported."
  1283.  
  1284.         OBJECT pingCtlByPassRouteTable
  1285.         MIN-ACCESS  read-only
  1286.         DESCRIPTION
  1287.             "Write access is not required.  If write access is
  1288.             not supported, return false(2) as the value of this
  1289.             object.  A value of false(2) means that the function
  1290.             represented by this option is not supported."
  1291.  
  1292.         OBJECT pingCtlDSField
  1293.         MIN-ACCESS  read-only
  1294.         DESCRIPTION
  1295.             "Write access is not required.  If write access is
  1296.             not supported, return a 0 as the value of this object.
  1297.             A value of 0 means that the function represented by
  1298.             this option is not supported."
  1299.  
  1300.         OBJECT pingResultsIpTargetAddressType
  1301.         SYNTAX  InetAddressType { unknown(0), ipv4(1), ipv6(2) }
  1302.         DESCRIPTION
  1303.             "An implementation is only required to
  1304.             support IPv4 and IPv6 addresses."
  1305.  
  1306.         OBJECT pingResultsIpTargetAddress
  1307.         SYNTAX  InetAddress (SIZE(0|4|16))
  1308.         DESCRIPTION
  1309.             "An implementation is only required to
  1310.             support IPv4 and globally unique IPv6 addresses."
  1311.  
  1312.         OBJECT pingResultsLastGoodProbe
  1313.         DESCRIPTION
  1314.             "This object is mandatory for implementations that have
  1315.             access to a system clock and that are capable of setting
  1316.             the values for DateAndTime objects.  It is RECOMMENDED
  1317.             that when this object is not supported its values
  1318.             be reported as '0000000000000000'H."
  1319.  
  1320.         OBJECT pingProbeHistoryTime
  1321.         DESCRIPTION
  1322.             "If the pingHistoryGroup is implemented, then this
  1323.             object is mandatory for implementations that have
  1324.             access to a system clock and that are capable of setting
  1325.             the values for DateAndTime objects.  It is RECOMMENDED
  1326.             that when this object is not supported its values
  1327.  
  1328.             be reported as '0000000000000000'H."
  1329.     ::= { pingCompliances 3 }
  1330.  
  1331.  pingCompliance MODULE-COMPLIANCE
  1332.     STATUS  deprecated
  1333.     DESCRIPTION
  1334.             "The compliance statement for the DISMAN-PING-MIB.  This
  1335.             compliance statement has been deprecated because the
  1336.             group pingGroup and the pingTimeStampGroup have been
  1337.             split and deprecated.  The pingFullCompliance statement
  1338.             is semantically identical to the deprecated
  1339.             pingCompliance statement."
  1340.  
  1341.     MODULE  -- this module
  1342.         MANDATORY-GROUPS {
  1343.                             pingGroup,
  1344.                             pingNotificationsGroup
  1345.                           }
  1346.         GROUP pingTimeStampGroup
  1347.         DESCRIPTION
  1348.             "This group is mandatory for implementations that have
  1349.             access to a system clock and that are capable of setting
  1350.             the values for DateAndTime objects.  It is RECOMMENDED
  1351.             that when this group is not supported the values
  1352.             for the objects in this group be reported as
  1353.             '0000000000000000'H."
  1354.  
  1355.         OBJECT pingMaxConcurrentRequests
  1356.         MIN-ACCESS  read-only
  1357.         DESCRIPTION
  1358.             "The agent is not required to support set
  1359.             operations to this object."
  1360.  
  1361.         OBJECT pingCtlStorageType
  1362.         MIN-ACCESS  read-only
  1363.         DESCRIPTION
  1364.             "Write access is not required.  It is also allowed
  1365.             that implementations support only the volatile
  1366.             StorageType enumeration."
  1367.  
  1368.         OBJECT pingCtlType
  1369.         MIN-ACCESS  read-only
  1370.         DESCRIPTION
  1371.             "Write access is not required.  In addition, the only
  1372.             value that MUST be supported by an implementation is
  1373.             pingIcmpEcho."
  1374.  
  1375.         OBJECT pingCtlByPassRouteTable
  1376.         MIN-ACCESS  read-only
  1377.         DESCRIPTION
  1378.             "This object is not required by implementations that
  1379.             are not capable of its implementation.  The function
  1380.             represented by this object is implementable if the
  1381.             setsockopt SOL_SOCKET SO_DONTROUTE option is
  1382.             supported."
  1383.  
  1384.         OBJECT pingCtlSourceAddressType
  1385.         SYNTAX  InetAddressType { unknown(0), ipv4(1), ipv6(2) }
  1386.         MIN-ACCESS  read-only
  1387.         DESCRIPTION
  1388.             "This object is not required by implementations that
  1389.             are not capable of binding the send socket with a
  1390.             source address.  An implementation is only required to
  1391.             support IPv4 and IPv6 addresses."
  1392.  
  1393.         OBJECT pingCtlSourceAddress
  1394.         SYNTAX  InetAddress (SIZE(0|4|16))
  1395.         MIN-ACCESS  read-only
  1396.         DESCRIPTION
  1397.             "This object is not required by implementations that
  1398.             are not capable of binding the send socket with a
  1399.             source address.  An implementation is only required to
  1400.             support IPv4 and globally unique IPv6 addresses."
  1401.  
  1402.         OBJECT pingCtlIfIndex
  1403.         MIN-ACCESS  read-only
  1404.         DESCRIPTION
  1405.             "Write access is not required.  When write access is
  1406.             not supported, return a 0 as the value of this object.
  1407.             A value of 0 means that the function represented by
  1408.             this option is not supported."
  1409.  
  1410.         OBJECT pingCtlDSField
  1411.         MIN-ACCESS  read-only
  1412.         DESCRIPTION
  1413.             "Write access is not required.  When write access is
  1414.             not supported, return a 0 as the value of this object.
  1415.             A value of 0 means that the function represented by
  1416.             this option is not supported."
  1417.  
  1418.         OBJECT pingResultsIpTargetAddressType
  1419.         SYNTAX  InetAddressType { unknown(0), ipv4(1), ipv6(2) }
  1420.         DESCRIPTION
  1421.             "An implementation is only required to
  1422.             support IPv4 and IPv6 addresses."
  1423.  
  1424.         OBJECT pingResultsIpTargetAddress
  1425.         SYNTAX  InetAddress (SIZE(0|4|16))
  1426.         DESCRIPTION
  1427.             "An implementation is only required to
  1428.             support IPv4 and globally unique IPv6 addresses."
  1429.     ::= { pingCompliances 1 }
  1430.  
  1431.  -- MIB groupings
  1432.  
  1433.  pingMinimumGroup OBJECT-GROUP
  1434.    OBJECTS {
  1435.              pingMaxConcurrentRequests,
  1436.              pingCtlTargetAddressType,
  1437.              pingCtlTargetAddress,
  1438.              pingCtlDataSize,
  1439.              pingCtlTimeOut,
  1440.              pingCtlProbeCount,
  1441.              pingCtlAdminStatus,
  1442.              pingCtlDataFill,
  1443.              pingCtlFrequency,
  1444.              pingCtlMaxRows,
  1445.              pingCtlStorageType,
  1446.              pingCtlTrapGeneration,
  1447.              pingCtlTrapProbeFailureFilter,
  1448.              pingCtlTrapTestFailureFilter,
  1449.              pingCtlType,
  1450.              pingCtlDescr,
  1451.              pingCtlByPassRouteTable,
  1452.              pingCtlSourceAddressType,
  1453.              pingCtlSourceAddress,
  1454.              pingCtlIfIndex,
  1455.              pingCtlDSField,
  1456.              pingResultsOperStatus,
  1457.              pingResultsIpTargetAddressType,
  1458.              pingResultsIpTargetAddress,
  1459.              pingResultsMinRtt,
  1460.              pingResultsMaxRtt,
  1461.              pingResultsAverageRtt,
  1462.              pingResultsProbeResponses,
  1463.              pingResultsSentProbes,
  1464.              pingResultsRttSumOfSquares,
  1465.              pingResultsLastGoodProbe
  1466.            }
  1467.    STATUS  current
  1468.    DESCRIPTION
  1469.        "The group of objects that constitute the remote ping
  1470.        capability."
  1471.     ::= { pingGroups 4 }
  1472.  
  1473.  pingCtlRowStatusGroup OBJECT-GROUP
  1474.    OBJECTS {
  1475.              pingCtlRowStatus
  1476.            }
  1477.    STATUS  current
  1478.    DESCRIPTION
  1479.        "The RowStatus object of the pingCtlTable."
  1480.     ::= { pingGroups 5 }
  1481.  
  1482.  pingHistoryGroup OBJECT-GROUP
  1483.    OBJECTS {
  1484.              pingProbeHistoryResponse,
  1485.              pingProbeHistoryStatus,
  1486.              pingProbeHistoryLastRC,
  1487.              pingProbeHistoryTime
  1488.            }
  1489.    STATUS  current
  1490.    DESCRIPTION
  1491.        "The group of objects that constitute the history
  1492.        capability."
  1493.     ::= { pingGroups 6 }
  1494.  
  1495.  pingNotificationsGroup NOTIFICATION-GROUP
  1496.    NOTIFICATIONS {
  1497.              pingProbeFailed,
  1498.              pingTestFailed,
  1499.              pingTestCompleted
  1500.           }
  1501.    STATUS        current
  1502.    DESCRIPTION
  1503.        "The notification that are required to be supported by
  1504.        implementations of this MIB."
  1505.    ::= { pingGroups 3 }
  1506.  
  1507.  pingGroup OBJECT-GROUP
  1508.    OBJECTS {
  1509.              pingMaxConcurrentRequests,
  1510.              pingCtlTargetAddressType,
  1511.              pingCtlTargetAddress,
  1512.              pingCtlDataSize,
  1513.              pingCtlTimeOut,
  1514.              pingCtlProbeCount,
  1515.              pingCtlAdminStatus,
  1516.              pingCtlDataFill,
  1517.              pingCtlFrequency,
  1518.              pingCtlMaxRows,
  1519.              pingCtlStorageType,
  1520.              pingCtlTrapGeneration,
  1521.              pingCtlTrapProbeFailureFilter,
  1522.              pingCtlTrapTestFailureFilter,
  1523.              pingCtlType,
  1524.              pingCtlDescr,
  1525.              pingCtlByPassRouteTable,
  1526.              pingCtlSourceAddressType,
  1527.              pingCtlSourceAddress,
  1528.              pingCtlIfIndex,
  1529.              pingCtlDSField,
  1530.              pingCtlRowStatus,
  1531.              pingResultsOperStatus,
  1532.              pingResultsIpTargetAddressType,
  1533.              pingResultsIpTargetAddress,
  1534.              pingResultsMinRtt,
  1535.              pingResultsMaxRtt,
  1536.              pingResultsAverageRtt,
  1537.              pingResultsProbeResponses,
  1538.              pingResultsSentProbes,
  1539.              pingResultsRttSumOfSquares,
  1540.              pingProbeHistoryResponse,
  1541.              pingProbeHistoryStatus,
  1542.              pingProbeHistoryLastRC
  1543.            }
  1544.    STATUS  deprecated
  1545.    DESCRIPTION
  1546.        "The group of objects that constitute the remote ping
  1547.        capability."
  1548.     ::= { pingGroups 1 }
  1549.  
  1550.  pingTimeStampGroup OBJECT-GROUP
  1551.  
  1552.    OBJECTS {
  1553.              pingResultsLastGoodProbe,
  1554.              pingProbeHistoryTime
  1555.            }
  1556.    STATUS  deprecated
  1557.    DESCRIPTION
  1558.        "The group of DateAndTime objects."
  1559.     ::= { pingGroups 2 }
  1560.  
  1561. END
  1562.